home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 12 / Mac Magazin and MacEasy Magazine CD - Issue 12.iso / Sharewarebibliothek / Anwendungen / Grafik / PhotoCapture 1.1 / Readme First! < prev   
Text File  |  1995-02-14  |  4KB  |  63 lines

  1.                                                         PhotoCapture
  2.                                                                 by Scott Gruby
  3.                                                                                                 Scott_Gruby@hmc.edu
  4.  
  5. PhotoCapture is a scriptable utility that allows you to capture images from a video source and save images to PICT files.
  6.  
  7. System Requirements:
  8. •    AV Capable Macintosh (Quadra/Centris 660 AV, Quadra 840AV, PowerMac 6100/7100/8100 AV/Quadra 630 w/ TV Tuner card)
  9. - or -
  10. •  QuickCam from Connectix (or any other video grabber hardware available)
  11. •    QuickTime 1.5 or later (compatible with QuickTime 2.0)
  12. •    A video source
  13.  
  14. Instructions:
  15. 1.    Hook up your video source to your Macintosh
  16. 2.    Launch PhotoCapture
  17. 3.    When the image you want to capture is on the screen, choose Copy from the Edit menu to copy it to the clipboard (or hit Command-C) or choose Save… from the File menu to save the file as a PICT (or hit Command-S).
  18.  
  19.  
  20. Scripting
  21. You can control PhotoCapture via AppleScript by sending it the following commands:
  22.  
  23. tell application "PhotoCapture"
  24.     Capture to Clipboard
  25. end tell
  26.  
  27. This tells PhotoCapture to capture the image to the clipboard. Note: PhotoCapture will come to the front and then move back as this is required to properly access the clipboard.
  28.  
  29. tell application "PhotoCapture"
  30.     Capture to File "Macintosh HD:scott.pict"
  31. end tell
  32.  
  33. This tells PhotoCapture to capture the image to the specified file. The file will be a PICT. If you want to use this with a WWW server, you can use the free program clip2gif
  34. <ftp://mrcnext.cso.uiuc.edu/pub/info-mac/grf/util/clip-to-gif-03.hqx> to convert the image to a gif. Since clip2gif is scriptable, you can basically capture images right to gifs (OK, there is a conversion process, but with AppleScript, it's transparent.) Here's a sample script:
  35.  
  36. tell application "PhotoCapture"
  37.     Capture to File "Macintosh HD:scott.gif"
  38.     quit
  39. end tell
  40.  
  41. tell application "clip2gif"
  42.     convert "Macintosh HD:scott.gif" saving as GIF in file "Macintosh HD:scott.gif"
  43.     quit
  44. end tell
  45.  
  46. The end result is that you can have up to the minute pictures on your WWW server using software such as MacHTTP having it send the AppleScript to PhotoCapture and clip2gif.
  47.  
  48. Registration and Distribution    
  49. PhotoCapture is distributed as shareware. You are allowed 3 weeks to try PhotoCapture. If you choose to use this program after that time, you must register PhotoCapture. PhotoCapture may be distributed by any electronic means as long as the instructions and application  are in the archive. If you would like to place PhotoCapture on CD-ROM, you must send me a copy of the CD-ROM without charge (you can't even charge me for shipping and handling). If you would like to place PhotoCapture on any other media, you must get prior permission from the author. 
  50.  
  51. Registration Cost: $15 (US)
  52.  
  53. Send check or money order (in US funds) to:
  54.  
  55. Scott Gruby
  56. 5383 Chelsea Street #101
  57. La Jolla, CA 92037-7959
  58.  
  59. Warranty    
  60. There is absolutely NO warranty, guarantee, hint, suggestion or anything else that PhotoCapture will work in all situations. PhotoCapture,  currently operates on my Quadra 660 AV. I will do my best to help you get this program running on your machine, but I make no promises. Support for this product is available by email only to Scott_Gruby@hmc.edu.
  61.  
  62. Fine Print    
  63. Scott Gruby hereby disclaims all warranties relating to this software, whether express or implied, including without limitation any implied warranties of merchantability or fitness for a particular purpose.  Does any one really read this stuff? Scott Gruby will not be liable for any special, incidental, consequential, indirect or similar damages due to loss of data or any other reason, even if Scott Gruby or his agent has been advised of the possibility of such damages.  In no event shall Scott Gruby be liable for any damages, regardless of the form of the claim.  The person using the software bears all risk as to the quality and performance of the software.